[90m= [39m[
    {#6474
      +"[1mTable[22m": "[32musers[39m",
      +"[1mCreate Table[22m": """
        [32mCREATE TABLE `users` ([39m\n
        [32m  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,[39m\n
        [32m  `public_code` varchar(7) DEFAULT NULL,[39m\n
        [32m  `credit_seconds` int(10) unsigned NOT NULL DEFAULT 0,[39m\n
        [32m  `credit_updated_at` timestamp NULL DEFAULT NULL,[39m\n
        [32m  `email` varchar(191) NOT NULL,[39m\n
        [32m  `username` varchar(191) DEFAULT NULL,[39m\n
        [32m  `password` varchar(191) NOT NULL,[39m\n
        [32m  `force_password_change` tinyint(1) NOT NULL DEFAULT 0,[39m\n
        [32m  `two_factor_secret` text DEFAULT NULL,[39m\n
        [32m  `two_factor_recovery_codes` text DEFAULT NULL,[39m\n
        [32m  `two_factor_confirmed_at` timestamp NULL DEFAULT NULL,[39m\n
        [32m  `first_name` varchar(191) DEFAULT NULL,[39m\n
        [32m  `last_name` varchar(191) DEFAULT NULL,[39m\n
        [32m  `phone` varchar(191) DEFAULT NULL,[39m\n
        [32m  `avatar` varchar(191) DEFAULT NULL,[39m\n
        [32m  `address` varchar(191) DEFAULT NULL,[39m\n
        [32m  `country_id` int(10) unsigned DEFAULT NULL,[39m\n
        [32m  `role_id` int(10) unsigned NOT NULL,[39m\n
        [32m  `birthday` date DEFAULT NULL,[39m\n
        [32m  `last_login` timestamp NULL DEFAULT NULL,[39m\n
        [32m  `status` varchar(20) NOT NULL,[39m\n
        [32m  `two_factor_country_code` int(11) DEFAULT NULL,[39m\n
        [32m  `two_factor_phone` bigint(20) unsigned DEFAULT NULL,[39m\n
        [32m  `two_factor_options` text DEFAULT NULL,[39m\n
        [32m  `email_verified_at` timestamp NULL DEFAULT NULL,[39m\n
        [32m  `remember_token` varchar(100) DEFAULT NULL,[39m\n
        [32m  `created_at` timestamp NULL DEFAULT NULL,[39m\n
        [32m  `updated_at` timestamp NULL DEFAULT NULL,[39m\n
        [32m  `announcements_last_read_at` timestamp NULL DEFAULT NULL,[39m\n
        [32m  PRIMARY KEY (`id`),[39m\n
        [32m  UNIQUE KEY `users_email_unique` (`email`),[39m\n
        [32m  UNIQUE KEY `users_public_code_unique` (`public_code`),[39m\n
        [32m  KEY `users_created_at_index` (`created_at`),[39m\n
        [32m  KEY `users_username_index` (`username`),[39m\n
        [32m  KEY `users_status_index` (`status`),[39m\n
        [32m  KEY `users_country_id_foreign` (`country_id`),[39m\n
        [32m  KEY `users_role_id_foreign` (`role_id`),[39m\n
        [32m  CONSTRAINT `users_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`) ON DELETE SET NULL,[39m\n
        [32m  CONSTRAINT `users_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)[39m\n
        [32m) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci[39m
        """,
    },
  ]

